home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Illustrator 6.0 SDK r1 Mac / AI Plugin Interface / AIEvent.h < prev    next >
Text File  |  1995-12-21  |  843b  |  66 lines

  1. /**
  2.  
  3.     AIEvent.h
  4.     Copyright (c) 1995 Adobe Systems Incorporated.
  5.     All Rights Reserved
  6.  
  7.     Adobe Illustrator 6.0 Event Suite.
  8.  
  9.  **/
  10.  
  11. #ifndef __AIEvent__
  12. #define __AIEvent__
  13.  
  14.  
  15. /*******************************************************************************
  16.  **
  17.  **    Imports
  18.  **
  19.  **/
  20.  
  21. #include "AITypes.h"
  22.  
  23.  
  24. #if Macintosh
  25.     #ifdef __cplusplus
  26.     extern "C" {
  27.     #endif
  28.     
  29.     #if PRAGMA_ALIGN_SUPPORTED
  30.     #pragma options align=mac68k
  31.     #endif
  32.     
  33.     #if PRAGMA_IMPORT_SUPPORTED
  34.     #pragma import on
  35.     #endif
  36. #endif
  37.  
  38.  
  39. /*******************************************************************************
  40.  **
  41.  ** Types
  42.  **
  43.  **/
  44.  
  45. #if Macintosh
  46. typedef EventRecord *PlatformEvent;
  47. #endif
  48.  
  49.  
  50. #if Macintosh
  51.     #if PRAGMA_IMPORT_SUPPORTED
  52.     #pragma import off
  53.     #endif
  54.     
  55.     #if PRAGMA_ALIGN_SUPPORTED
  56.     #pragma options align=reset
  57.     #endif
  58.     
  59.     #ifdef __cplusplus
  60.     }
  61.     #endif
  62. #endif
  63.  
  64.  
  65. #endif
  66.